home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-07-23 | 756 b | 39 lines | [TEXT/CWIE] |
- // CLG_CharInfo.h
-
- #pragma once
-
- #include <LView.h>
-
-
- //****************************************************
- class CLG_CharInfo : public LPane {
- public:
- enum { class_ID = 'Cchi' };
- static CLG_CharInfo* CreateDisplayStream(
- LStream *inStream);
-
-
- CLG_CharInfo( void);
- CLG_CharInfo( LStream *inStream);
-
- void Init(void);
- void ClickSelf(const SMouseDownEvent &inMouseDown);
- void AdjustCursorSelf(Point inPortPt,
- const EventRecord &inMacEvent);
-
- void DrawSelf();
- void SetCharNum( unsigned short inCharNum);
- void SetBaseCharDisp( unsigned short inCharNum);
-
- //---------------------------------
- unsigned short mCharNum;
- unsigned char mBaseCharStr[ 6];
- unsigned char mHexStr[ 6];
- unsigned char mDecStr[ 6];
-
-
- protected:
-
- };
-
-